#
# Makefile
#

LIBS = -s -static -lm 

default: gullydeckel

OFILES = gullydeckel.o \
  
	
$(OFILES): 

gullydeckel:  $(OFILES) 
	gcc -o gullydeckel $(OFILES)  $(LIBS)

clean:
	rm -f *.o  gullydeckel

.c.o:   gullydeckel.c
	gcc -c -g $*.c  -s -w -Wfatal-errors -pipe -s -DNDEBUG -O3 \
      -march=athlon64  -static -fno-rtti -finline-functions -fprefetch-loop-arrays -flto \
      -DCOMPILE_FAST -DUNIX -ansi 








